home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Precision Software Appli…tions Silver Collection 1
/
Precision Software Applications Silver Collection Volume One (PSM) (1993).iso
/
tutor
/
cptuts22.arj
/
TRYNDATE.CPP
< prev
next >
Wrap
C/C++ Source or Header
|
1992-01-20
|
527b
|
23 lines
// Chapter 7 - Program 11
#include <iostream.h>
#include "newdate.h"
void main(void)
{
new_date now, later, birthday;
later.set_date(12, 31, 1991);
birthday.set_date(2, 19, 1991);
cout << "Today is day " << now.get_day_of_year() << "\n";
cout << "Dec 31 is day " << later.get_day_of_year() << "\n";
cout << "Feb 19 is day " << birthday.get_day_of_year() << "\n";
}
// Result of execution
// Today is day 20
// Dec 31 is day 365
// Feb 19 is day 50